home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 19 / CU Amiga Magazine's Super CD-ROM 19 (1998)(EMAP Images)(GB)[!][issue 1998-02].iso / CUCD / Online / Apache / cgi-bin / home.sh < prev    next >
Linux/UNIX/POSIX Shell Script  |  1997-08-07  |  1KB  |  38 lines

  1. #!/bin/sh
  2.  
  3. CHECK_FILE=env:away
  4.  
  5. echo 'Cache-Control: no-cache'
  6. echo 'Content-type: text/html'
  7. echo
  8. echo '<HTML><HEAD><TITLE>'
  9. echo 'Is anybody there?'
  10.  
  11. echo '</TITLE></HEAD>><BODY BGCOLOR="#ffffff">'
  12. echo '<IMG SRC="/pics/HiddiLine.gif" WIDTH="580" HEIGHT="9" ALT=" "><BR>'
  13.  
  14. if test -f $CHECK_FILE; then
  15.     echo "<h1>Sorry, I am absent...</H1>"
  16.     echo "...but I am still logged in. I will be back in a few minute, tonight,"
  17.     echo "tomorrow or next monday ;-)"
  18.  
  19. else
  20.     echo "<H1>There's somebody around!</h1>"
  21.  
  22.     echo "I am sitting in front of my computer right now and you can try to "
  23.     echo "contact me via<P><PRE>"
  24.     echo "  ntalk math@" $SERVER_NAME
  25.     echo "</PRE><P>"
  26.  
  27.     echo "<B>Note</b>: my talk-daemon doesn't work very well - you should"
  28.     echo 'consider to <A HREF="mailto:Torsten.Hiddessen@tu-clausthal.de">contact'
  29.     echo 'me via email</a>, so.'
  30. fi
  31.  
  32. echo '<P><hr>'
  33. echo 'Created at 29-Dec-96, updated on 21-Feb-97'
  34. echo '<ADDRESS><A HREF="/"Torsten Hiddessen</a></ADDRESS>'
  35. echo '</BODY></HTML>'
  36.  
  37.  
  38.